JSON messages
Currently we support a simple Json format
JSON Message
This is an example of a format this Bee can decode. For each Value Item you need to configure where to get the value, time, and quality from.
One example of a configuation for a Iremvalue would be:
TimeName t
Qualityname q
ValueName ai0
this will gives a value with the VQT( 27.923456789 ,192, 2020-09-29T12:55:52.5972965Z)
TimeName t
Qualityname q
ValueName A[2]
this will gives a value with the VQT(28.123456789000004 ,192, 2020-09-29T12:55:52.5972965Z)
Json-message example
{
"c": 5779,
"t": "2020-09-29T12:55:52.5972965Z",
"q": 192,
"ai0": 27.923456789,
"ai1": 28.923456789,
"ai2": 29.923456789,
"ai3": 30.923456789,
"ai4": 31.923456789,
"ai5": 32.923456789,
"ai6": 33.923456789,
"ai7": 34.923456789,
"ai8": 35.923456789,
"ai9": 36.923456789,
"ai10": 37.923456789,
"A": [
27.923456789,
28.023456789,
28.123456789000004,
28.223456789,
28.323456789,
28.423456789,
28.523456789,
28.623456789000004,
28.723456789,
28.823456789
]
}